Skip to content

Conversation

@github-actions
Copy link

@github-actions github-actions bot commented Jan 5, 2026

SDK update

Versioning

Version Bump Type: [patch] - 🤖 (automated)

Python SDK Changes:

  • agentset.search.execute(): response.data.[].metadata Changed Breaking ⚠️
  • agentset.ingest_jobs.list():
    • request.per_page Changed
    • response.data.[] Changed
  • agentset.ingest_jobs.create():
    • request Changed
    • response.data Changed
  • agentset.ingest_jobs.get(): response.data Changed
  • agentset.ingest_jobs.delete(): response.data Changed
  • agentset.documents.list():
    • request.per_page Changed
    • response.data.[].config.metadata.{}.[array] Added
  • agentset.documents.get(): response.data.config.metadata.{}.[array] Added
  • agentset.documents.delete(): response.data.config.metadata.{}.[array] Added
OpenAPI Change Summary
├─┬Paths
│ ├─┬/v1/namespace/{namespaceId}/search
│ │ └─┬POST
│ │   └─┬Responses
│ │     └─┬200
│ │       └─┬application/json
│ │         └─┬Schema
│ │           └─┬data
│ │             └─┬Schema
│ │               └─┬metadata
│ │                 ├──[🔀] additionalProperties (819:49)❌ 
│ │                 ├──[-] required (844:59)❌ 
│ │                 ├──[-] required (845:59)❌ 
│ │                 ├──[-] required (846:59)❌ 
│ │                 ├──[+] propertyNames (818:29)❌ 
│ │                 ├──[-] properties (826:57)❌ 
│ │                 ├──[-] properties (828:57)❌ 
│ │                 ├──[-] properties (830:57)❌ 
│ │                 ├──[-] properties (838:57)❌ 
│ │                 ├──[-] properties (832:57)❌ 
│ │                 ├──[-] properties (835:57)❌ 
│ │                 └──[-] properties (841:57)❌ 
│ ├─┬/v1/namespace/{namespaceId}/documents
│ │ └─┬GET
│ │   └─┬Parameters
│ │     └─┬Schema
│ │       └──[🔀] $ref (1433:13)❌ 
│ └─┬/v1/namespace/{namespaceId}/ingest-jobs
│   └─┬GET
│     └─┬Parameters
│       └─┬Schema
│         └──[🔀] $ref (1433:13)❌ 
└─┬Components
  ├──[+] schemas (1433:7)
  ├─┬ingest-job-configOutput
  │ └─┬metadata
  │   ├──[🔀] description (2915:24)
  │   └─┬Schema
  │     └──[+] anyOf (2912:17)
  ├─┬batch-payload
  │ └─┬items
  │   └──[+] description (2181:24)
  ├─┬document-configOutput
  │ └─┬metadata
  │   ├──[🔀] description (2829:24)
  │   └─┬Schema
  │     └──[+] anyOf (2826:17)
  ├─┬batch-payload-input
  │ └─┬items
  │   └──[+] description (1697:24)
  ├─┬document-config
  │ └─┬metadata
  │   ├──[🔀] description (1725:24)
  │   └─┬Schema
  │     └──[+] anyOf (1722:17)
  ├─┬ingest-job-config
  │ └─┬metadata
  │   ├──[🔀] description (1817:24)
  │   └─┬Schema
  │     └──[+] anyOf (1814:17)
  └─┬upload-file-schema
    ├─┬fileSize
    │ ├──[+] examples (1914:15)
    │ └──[+] description (1912:24)
    ├─┬fileName
    │ ├──[+] examples (1902:15)
    │ └──[+] description (1900:24)
    └─┬contentType
      ├──[+] examples (1907:15)
      └──[+] description (1905:24)
Document Element Total Changes Breaking Changes
paths 14 14
components 17 0

PYTHON CHANGELOG

core: 5.23.18 - 2026-01-12

🐛 Bug Fixes

  • Further tune media type matching expression for ReDoS (commit by @bflad)

core: 5.23.17 - 2026-01-07

🐛 Bug Fixes

  • Prevent ReDoS vulnerability report for media type matching expression (commit by @bflad)

core: 5.23.16 - 2025-12-19

🐛 Bug Fixes

  • remove non-determinism from rare interaction with readonly/writeonly fields (commit by @ThomasRooney)

core: 5.23.15 - 2025-12-18

🐛 Bug Fixes

  • fixed escaping of template braces in defaults, consts, and comments (commit by @tristanspeakeasy)

nullables: 1.0.2 - 2026-01-12

🐛 Bug Fixes

  • Add custom serialization method for models where optional (but no nullable) fields are present (commit by @2ynn)

sdkHooks: 1.2.1 - 2026-01-14

🐝 New Features

  • add async hooks support for non-blocking I/O in async SDK methods; sync hooks now execute in a dedicated thread when async hooks are disabled (commit by @vishalg0wda)

unions: 3.1.2 - 2026-01-13

🐛 Bug Fixes

  • always reference discriminated union members directly (commit by @danielkov)

Based on Speakeasy CLI 1.686.1

@github-actions github-actions bot added the patch Patch version bump label Jan 5, 2026
@github-actions github-actions bot force-pushed the speakeasy-sdk-regen-1767578364 branch 8 times, most recently from 23a52e7 to b400be7 Compare January 13, 2026 01:48
@github-actions github-actions bot force-pushed the speakeasy-sdk-regen-1767578364 branch 3 times, most recently from 717347e to 9be481e Compare January 16, 2026 01:52
* `agentset.search.execute()`:  `response.data.[].metadata` **Changed** **Breaking** ⚠️
* `agentset.ingest_jobs.list()`: 
  *  `request.per_page` **Changed**
  *  `response.data.[]` **Changed**
* `agentset.ingest_jobs.create()`: 
  *  `request` **Changed**
  *  `response.data` **Changed**
* `agentset.ingest_jobs.get()`:  `response.data` **Changed**
* `agentset.ingest_jobs.delete()`:  `response.data` **Changed**
* `agentset.documents.list()`: 
  *  `request.per_page` **Changed**
  *  `response.data.[].config.metadata.{}.[array]` **Added**
* `agentset.documents.get()`:  `response.data.config.metadata.{}.[array]` **Added**
* `agentset.documents.delete()`:  `response.data.config.metadata.{}.[array]` **Added**
@github-actions github-actions bot force-pushed the speakeasy-sdk-regen-1767578364 branch from 2ab2a83 to 7509bb6 Compare January 16, 2026 13:18
@ahmedriad1 ahmedriad1 merged commit 1c5bd87 into main Jan 16, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

patch Patch version bump

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants